home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / spiele / zebulon / src / intro.t < prev    next >
Text File  |  1997-01-14  |  3KB  |  62 lines

  1. /* $Id: intro.t 1.8 96/04/16 21:56:34 mol Exp $
  2.  **********************************************************************
  3.  *
  4.  * Uncle Zebulon's Will, version 2.0
  5.  *
  6.  * An adventure game, written in TADS 2.2.
  7.  *
  8.  * intro.t - The introduction
  9.  *
  10.  **********************************************************************
  11.  * 
  12.  * Copyright (c) 1995-96 by Magnus Olsson (mol@df.lth.se).
  13.  * All rights reserved.
  14.  *
  15.  * This source code may be copied and distributed freely as long as the 
  16.  * following conditions are met:
  17.  *   - no fee may be charged for the code (a nominal fee may be charged
  18.  *     to cover distribution costs)
  19.  *   - the code is not modified in any way
  20.  *   - this copyright notice is not removed or modified in any way
  21.  *
  22.  * You may use individual parts of this code in your programs
  23.  * as long as they are attributed to the author. You are not allowed
  24.  * to use the plot, story, characters or text of the game without the
  25.  * written permission of the author.
  26.  *
  27.  ***********************************************************************/
  28.  
  29. /*
  30.  * The following function prints the introductory text. 
  31.  */
  32. intro : function
  33. {
  34.     "\(Uncle Zebulon's Will\) by Magnus Olsson (mol@df.lth.se)\b
  35.  
  36.     The news of your uncle Zebulon's death came as a shock. You've
  37.     been out of touch lately, and since you left for college a year ago 
  38.     you haven't heard a word from him. During your childhood, however, 
  39.     your eccentric uncle - once the black sheep of the family, 
  40.     an unsuccessful alchemist and self-proclaimed wizard, reputed
  41.     to be a very wealthy man - was your 
  42.     favourite relative. Perhaps you were his favourite nephew as 
  43.     well. You miss his stories of distant realms and the magic gadgets
  44.     he loved to demonstrate...\b
  45.     
  46.     \tYou leave for home immediately on receiving the message, but the
  47.     trip is long and you're delayed by the inevitable train strikes. When
  48.     you finally arrive, you find your family in a state of frustrated
  49.     confusion. Not only is your uncle's will written in a quite
  50.     unsuitably sarcastic tone,
  51.     seriously insulting most of your relatives, but it turns out there 
  52.     isn't much of an inheritance to fight over; despite a thorough 
  53.     search of your uncle's house, no fabulous treasures are found.
  54.     The bequests for you and your cousins are almost pathetic:
  55.     one small memento each, to be selected after everybody else have
  56.     made their choices. Yet what is there to lose? At least you'd like
  57.     to have one last look at uncle Zeb's house; maybe you'll find some
  58.     treasure overlooked by the others, perhaps something magical...
  59.     \b";
  60. }
  61.  
  62.